home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wdj0697.zip / TECHTIPS.ZIP / TIPSDOC.H < prev    next >
C/C++ Source or Header  |  1996-06-04  |  1KB  |  45 lines

  1. // TipsDoc.h : interface of the CTipsDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CTipsDoc : public CDocument
  6. {
  7. protected: // create from serialization only
  8.     CTipsDoc();
  9.     DECLARE_DYNCREATE(CTipsDoc)
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Overrides
  18.     // ClassWizard generated virtual function overrides
  19.     //{{AFX_VIRTUAL(CTipsDoc)
  20.     public:
  21.     virtual BOOL OnNewDocument();
  22.     virtual void Serialize(CArchive& ar);
  23.     //}}AFX_VIRTUAL
  24.  
  25. // Implementation
  26. public:
  27.     virtual ~CTipsDoc();
  28. #ifdef _DEBUG
  29.     virtual void AssertValid() const;
  30.     virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32.  
  33. protected:
  34.  
  35. // Generated message map functions
  36. protected:
  37.     //{{AFX_MSG(CTipsDoc)
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.         //    DO NOT EDIT what you see in these blocks of generated code !
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.